home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19971216-19980424 / 000048_news@newsmaster….columbia.edu _Sun Jan 4 07:04:12 1998.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id HAA25226
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Sun, 4 Jan 1998 07:04:12 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id HAA28559
  7.     for kermit.misc@watsun; Sun, 4 Jan 1998 07:04:11 -0500 (EST)
  8. Path: news.columbia.edu!news.new-york.net!news-peer.gip.net!news.gsl.net!gip.net!news-peer.sprintlink.net!news-pull.sprintlink.net!news-in-east.sprintlink.net!news.sprintlink.net!Sprint!205.237.233.10!wesley.videotron.net!walton.videotron.net!not-for-mail
  9. From: jf mezei <"[non-spam]jfmezei"@videotron.ca>
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: VMS:  doesn't dealloc devices after use.
  12. Date: Sat, 03 Jan 1998 22:54:22 -0500
  13. Organization: VTL
  14. Lines: 43
  15. Message-ID: <34AF07E8.4A8A@videotron.ca>
  16. Reply-To: "[non-spam]jfmezei"@videotron.ca
  17. NNTP-Posting-Host: ppp188.104.mmtl.videotron.net
  18. Mime-Version: 1.0
  19. Content-Type: text/plain; charset=us-ascii
  20. Content-Transfer-Encoding: 7bit
  21. X-Mailer: Mozilla 3.01 (Macintosh; I; PPC)
  22. Xref: news.columbia.edu comp.protocols.kermit.misc:8216
  23.  
  24. CKermit 6.0.192 6 Sep 96 for VMS VAX.
  25.  
  26. I have a script which does the following:
  27.  
  28. SET SESSION LOG myfile.txt
  29.  
  30. :loop
  31. SET HOST www.heaven.sky:80
  32. IF FAILURE end 1 goto hell            ; sorry couldn't resist.
  33. SET TERMINAL ECHO ON
  34. OUTPUT POST /cgi-bin/ERIS.pl HTTP/1.0\13
  35. OUTPUT header text (about 10 outputs ended with \13)
  36. CONNECT
  37. GOTO loop
  38.  
  39.  
  40. Basically, this sends the equivalent of pressing the SUBMIT button on a
  41. form to a web server and then the connect just waist for the HTML
  42. results to be sent back to me (and logged to myfile.txt). After the
  43. results are sent, the remote server disconnects and the "CONNECT"
  44. statement automatically ends and the script continues.
  45.  
  46. The PROBLEM:
  47.  
  48. The script runs very fine for hundreds of transactions, but stops when
  49. trying to send the 242nd transaction.
  50.  
  51. The message:
  52.     Trying 0.0.0.0... (instead of the usual numeric address shown)
  53.     TCP socket error: non translatable vms error code: 0x1B4,
  54.     VMS Message
  55.     %system-f-noiochan, no i/o channel available
  56.     can't open connection to www.heaven.sky:80
  57.  
  58. Further investigation revealed that after a CONNECT completes, the
  59. IPnnnn device is not deallocated and eventually, the process runs out
  60. of resources to allocate those devices.
  61.     neither a "HANGUP" or a "SET HOST"  after the "CONNECT" makes 
  62.     a difference.
  63.  
  64. Stopping kermit and restarting it fixes the quota problem and you're
  65. good for another 242 transactions. (In my case, with current process
  66. quotas, your milage may vary, of course).